home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-04-03 | 1.1 KB | 30 lines | [TEXT/MPS ] |
- ; File: E16.Memory
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- memErr EQU $0201 ; unable to allocate block
- emptyErr EQU $0202 ; illegal operation, empty handle
- notEmptyErr EQU $0203 ; an empty handle was expected for this operation
- lockErr EQU $0204 ; illegal operation on a locked block
- purgeErr EQU $0205 ; attempt to purge an unpurgable block
- handleErr EQU $0206 ; an invalid handle was given
- idErr EQU $0207 ; an invalid owner ID was given
- attrErr EQU $0208 ; operation illegal on block with given attributes
- attrNoPurge EQU $0000 ; Not purgeable
- attrBank EQU $0001 ; fixed bank
- attrAddr EQU $0002 ; fixed address
- attrPage EQU $0004 ; page aligned
- attrNoSpec EQU $0008 ; may not use special memory
- attrNoCross EQU $0010 ; may not cross banks
- attrPurge1 EQU $0100 ; Purge level 1
- attrPurge2 EQU $0200 ; Purge level 2
- attrPurge3 EQU $0300 ; Purge level 3
- attrPurge EQU $0300 ; test or set both purge bits
- attrHandle EQU $1000 ; block of master pointers
- attrSystem EQU $2000 ; system handle
- attrFixed EQU $4000 ; not movable
- attrLocked EQU $8000 ; locked
-